home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 November / CHIP Kasım 1996.iso / ms / webpost / wpsdk.exe / RCDATA / CABINET / MAKEFILE.WP < prev    next >
Text File  |  1996-07-08  |  434b  |  18 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. APPVER=4.0
  4.  
  5. !include <win32.mak>
  6.  
  7. all: wbpost.exe
  8.  
  9. # Update the object file if necessary
  10.  
  11. wbpost.obj: wbpost.cpp
  12.     $(cc) $(cflags) $(cvars) $(cdebug) wbpost.cpp
  13.  
  14. # Update the executable file if necessary, and if so, add the resource back in.
  15.  
  16. wbpost.exe: wbpost.obj
  17.     $(link) $(linkdebug) $(conlflags) -out:wbpost.exe wbpost.obj $(conlibs) $(guilibs) webpost.lib 
  18.